{% extends "base.html" %} {% block title %}Case Analysis Result - AI Legal Assistant{% endblock %} {% block extra_styles %} {% endblock %} {% block content %}
Back to Dashboard
Case #{{ case.id }} · AI analysis complete

{{ case.category }}

{{ analysis.confidence }} Confidence
Case Summary

{{ case.summary }}

Legal Guidance
    {% for line in case.legal_guidance.split('\n') %} {% if line.strip() %}
  • {{ line.strip().lstrip('•-').strip() }}
  • {% endif %} {% endfor %}
{% if recommendations %}
Recommended Lawyers for {{ case.category }}
{% for rec in recommendations %} {% set lawyer = rec.lawyer %}
{{ lawyer.name }}
{{ lawyer.law_firm_name }}
{{ lawyer.specialization }}
{{ lawyer.city }} {{ lawyer.experience_years }} yrs {{ '★' * (lawyer.rating|int) }}{{ '☆' * (5 - lawyer.rating|int) }} {{ lawyer.rating }}/5 {{ lawyer.success_rate_percentage }}% success PKR {{ "{:,.0f}".format(lawyer.consultation_fee_pkr) }}
{{ rec.reason }} Book
{% endfor %}
{% endif %}
Submit Another Case Browse All Lawyers Ask Follow-up Questions
{% endblock %}